home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue67 / express / TestUnit1.dfm < prev   
Encoding:
Text File  |  2001-01-31  |  1.6 KB  |  86 lines

  1. object Form2: TForm2
  2.   Left = 337
  3.   Top = 262
  4.   Width = 315
  5.   Height = 196
  6.   Caption = 'Simple Parser10 Demo'
  7.   Color = clBtnFace
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   OldCreateOrder = False
  14.   PixelsPerInch = 96
  15.   TextHeight = 13
  16.   object Label1: TLabel
  17.     Left = 8
  18.     Top = 8
  19.     Width = 81
  20.     Height = 13
  21.     Caption = 'Enter expression:'
  22.   end
  23.   object Label2: TLabel
  24.     Left = 240
  25.     Top = 8
  26.     Width = 30
  27.     Height = 13
  28.     Caption = 'Result'
  29.   end
  30.   object Edit1: TEdit
  31.     Left = 8
  32.     Top = 24
  33.     Width = 121
  34.     Height = 21
  35.     TabOrder = 0
  36.     Text = 'Sqrt(pi)*4+5-3/5'
  37.   end
  38.   object Edit2: TEdit
  39.     Left = 232
  40.     Top = 24
  41.     Width = 65
  42.     Height = 21
  43.     TabOrder = 1
  44.   end
  45.   object Button1: TButton
  46.     Left = 144
  47.     Top = 24
  48.     Width = 75
  49.     Height = 25
  50.     Caption = '&Calc!'
  51.     TabOrder = 2
  52.     OnClick = Button1Click
  53.   end
  54.   object Button2: TButton
  55.     Left = 8
  56.     Top = 64
  57.     Width = 137
  58.     Height = 25
  59.     Caption = 'Define User functions'
  60.     TabOrder = 3
  61.     OnClick = Button2Click
  62.   end
  63.   object Button3: TButton
  64.     Left = 8
  65.     Top = 128
  66.     Width = 137
  67.     Height = 25
  68.     Caption = 'Define User Variable'
  69.     TabOrder = 4
  70.     OnClick = Button3Click
  71.   end
  72.   object Button4: TButton
  73.     Left = 8
  74.     Top = 96
  75.     Width = 137
  76.     Height = 25
  77.     Caption = 'Remove User functions'
  78.     TabOrder = 5
  79.     OnClick = Button4Click
  80.   end
  81.   object Parser1: TParser
  82.     Left = 176
  83.     Top = 64
  84.   end
  85. end
  86.